#!/bin/bash
#
# This postupgrade script removes a property list used for Print Settings PDE
# so that all the settings revert to default.
# Copyright (c) Brother Industries, LTD. 2011 All Rights Reserved.
#
PDEPLIST="com.brother.print.pde.CocoaBRMLQuality11.plist"

cd $HOME
cd Library/Preferences/

if [ -e $PDEPLIST ]; then
## remove property list
	rm $PDEPLIST
	echo "$PDEPLIST removed"
fi
